home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / ghostscript / 8.64 / lib / pphs < prev    next >
Encoding:
Text File  |  2009-04-17  |  433 b   |  17 lines

  1. #!/bin/sh
  2. # $Id: pphs 8107 2007-07-05 19:04:29Z till $
  3. # Print the Primary Hint Stream from a linearized PDF file.  Usage:
  4. #    pphs filename.pdf
  5. # Output goes to stdout.
  6.  
  7. # This definition is changed on install to match the
  8. # executable name set in the makefile
  9. GS_EXECUTABLE=gs
  10. gs="`dirname $0`/$GS_EXECUTABLE"
  11. if test ! -x "$gs"; then
  12.     gs="$GS_EXECUTABLE"
  13. fi
  14. GS_EXECUTABLE="$gs"
  15.  
  16. exec "$GS_EXECUTABLE" -q -dNODISPLAY -- pphs.ps "$@"
  17.